 body {
            overflow-x: hidden;
            background-color: #fcfcfc;
        }
       

 .logo-text, .main-title, h1, h2 ,a , h4 {
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-style: normal;
}
p{
 font-family: "PT Serif", serif;
  font-weight: 400;
  font-style: normal;
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* NAVBAR TRANSPARENT TO SOLID */
 .navbar-brand img {
            height: 120px;
        }
/* NAVBAR DEFAULT (TRANSPARENT) */
.navbar {
    background: rgba(255, 255, 255, 0);   /* شفاف */
    backdrop-filter: blur(0px);
    box-shadow: none;
    border-bottom: 3px solid transparent;
    transition: 0.4s ease;     
    position: fixed;
    width: 100%;
    z-index: 999;

}

.navbar a {
    color: white !important;
    transition: 0.3s;
    font-size: 25px;
    font-weight: 700;
}

/* بعد السكروول */
.navbar.scrolled a {
    color: #5d3a1a !important; 
}
.navbar.scrolled img {
            height: 60px;
        }

/* NAVBAR بعد الـ SCROLL */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 3px solid #fcb242;
    
}

        .nav-link {
            font-size: 18px;
            margin-left: 60px;
            font-weight: 600;
           
        }
        .navbar-nav {
    margin-left: auto;
    margin-right: auto;
}


/* ضبط اللوجو */
.logo-img {
    height: 120px;
    transition: 0.3s ease-in-out;
}

/*  */
.logo-subtitle {
    font-size: 10px;
    font-weight: 600;
    color: white;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* لما الـ navbar يحصل له scroll */
.navbar.scrolled .logo-subtitle {
    color: #5d3a1a !important;   /* نفس لون منيو بعد السكروول */
    font-size: 6px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* لما اللوجو يصغر */
.navbar.scrolled .logo-img {
    height: 60px;
}
/* HERO SECTION */
.about-hero {
    height: 55vh;
    background: url('../images/about\ 5.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-title {
    position: relative;
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 3px;
    z-index: 2;
    opacity: 0;
    animation: fadeUp 1.3s forwards;
}


/* About Section */
.about-page-section {
    padding: 90px 0;
    background: #f8f4ec;
}

.section-title {
    font-size: 40px;
    color: #5d3a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-text {
    font-size: 19px;
    line-height: 1.8;
    text-align: justify;
}

.about-img {
    width: 85%;
    height: 450px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
    margin-bottom: 260px;
  margin-left: 100px;
}

/* ANIMATIONS */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}
    /* FOOTER */
        footer {
            background: linear-gradient(90deg,#5d3a1a,#7d5225);
             padding: 40px 0;
              border-top:3px solid #FCB243;
           /* background:  #603A18;
            color: #fff;
           
            */
        }

        footer p {
            text-align: center;
            color: #ffffff;
            margin: 0;
        }

        /* 📱📱 RESPONSIVE */
@media (max-width: 991px) {
    .nav-link {
        margin-left: 0 !important;
        text-align: center;
        padding: 10px 0;
    }

    .logo-img {
        height: 80px;
    }

    .navbar.scrolled .logo-img {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 30px;
    }

    .section-text {
        font-size: 17px;
    }

    .about-img {
        margin: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .navbar a {
        font-size: 18px !important;
    }
}
